home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / s / xenix.h < prev   
Encoding:
C/C++ Source or Header  |  1995-08-04  |  3.6 KB  |  135 lines

  1. /* Definitions file for GNU Emacs running SCO Xenix 386 Release 2.2
  2.    Copyright (C) 1988 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /*
  21.  *    Define symbols to identify the version of Unix this is.
  22.  *    Define all the symbols that apply correctly.
  23.  */
  24.  
  25. /* Synched up with: FSF 19.29. */
  26.  
  27. /* #define UNIPLUS */
  28. #define XENIX
  29. #define USG5
  30. #define USG
  31. /* #define HPUX */
  32. /* #define UMAX */
  33. /* #define BSD4_1 */
  34. /* #define BSD4_2 */
  35. /* #define BSD4_3 */
  36. /* #define BSD */
  37. /* #define VMS */
  38.  
  39. /* SYSTEM_TYPE should indicate the kind of system you are using.
  40.  It sets the Lisp variable system-type.  */
  41.  
  42. #define SYSTEM_TYPE "xenix"
  43.  
  44. /* Letter to use in finding device name of first pty,
  45.   if system supports pty's.  'p' means it is /dev/ptyp0  */
  46.  
  47. /* #define FIRST_PTY_LETTER 'p' */
  48.  
  49. /*
  50.  *    Define HAVE_PTYS if the system supports pty devices.
  51.  */
  52.  
  53. /* #define HAVE_PTYS */
  54.  
  55. /* If your system uses COFF (Common Object File Format) then define the
  56.    preprocessor symbol "COFF". */
  57.  
  58. /* #define COFF */
  59.  
  60. /* Xenix requires completely different unexec code
  61.    which lives in a separate file.  Specify the file name.  */
  62.  
  63. #define UNEXEC unexenix.o
  64.  
  65. /* define MAIL_USE_FLOCK if the mailer uses flock
  66.    to interlock access to /usr/spool/mail/$USER.
  67.    The alternative is that a lock file named
  68.    /usr/spool/mail/$USER.lock.  */
  69.  
  70. #define MAIL_USE_FLOCK
  71.  
  72. /* Define SHORTNAMES if the C compiler can distinguish only
  73.    short names.  It means that the stuff in ../shortnames
  74.    must be run to convert the long names to short ones.  */
  75.  
  76. /* #define SHORTNAMES */
  77.  
  78. /* Compensate for one incompatibility between Xenix and V.0.  */
  79. #define n_zeroes n_name[0]
  80.  
  81. /* The file containing the kernel's symbol table is called /xenix.  */
  82.  
  83. #define KERNEL_FILE "/xenix"
  84.  
  85. /* The symbol in the kernel where the load average is found
  86.    is named avenrun.  */
  87.  
  88. #define LDAV_SYMBOL "_avenrun"
  89.  
  90. /* Special hacks needed to make Emacs run on this system.  */
  91.  
  92. /* On USG systems the system calls are interruptible by signals
  93.  that the user program has elected to catch.  Thus the system call
  94.  must be retried in these cases.  To handle this without massive
  95.  changes in the source code, we remap the standard system call names
  96.  to names for our own functions in sysdep.c that do the system call
  97.  with retries. */
  98.  
  99. #define INTERRUPTIBLE_OPEN
  100. #define INTERRUPTIBLE_IO
  101.  
  102. /* Compiler bug bites on many systems when default ADDR_CORRECT is used.  */
  103.  
  104. #define ADDR_CORRECT(x) (x)
  105.  
  106. /* Prevent -lg from being used for debugging.  Not implemented?  */
  107.  
  108. #define LIBS_DEBUG
  109.  
  110. /* Switches for linking temacs.  */
  111.  
  112. #define LD_SWITCH_SYSTEM -i
  113.  
  114. /* Use terminfo instead of termcap.  */
  115.  
  116. /* Tell Emacs to use Terminfo.  */
  117.  
  118. #define TERMINFO
  119.  
  120. /* Tell Xenix curses to BE Terminfo.  */
  121. #define M_TERMINFO
  122.  
  123. /* Control program name for etc/fakemail to run.  */
  124.  
  125. #ifdef SMAIL
  126. #define MAIL_PROGRAM_NAME "/usr/bin/smail -q0"
  127. #else
  128. #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
  129. #endif
  130.  
  131. /* Some variants have TIOCGETC, but the structures to go with it
  132.    are not declared.  */
  133.  
  134. #define BROKEN_TIOCGETC
  135.